home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 001a / bew2lst.zip / BEW2LST.DOC next >
Text File  |  1992-01-27  |  913b  |  39 lines

  1.  
  2. BEW2LST
  3. -------
  4.  
  5. Written by Samuel H. Smith, 25-Jan-92.
  6. Public domain material.
  7.  
  8. This program converts Qmodem's "BEW" upload file listing into a normal
  9. file list for use with the HS/Link protocol.
  10.  
  11. Usage:
  12.         bew2lst <QMODEM.BEW >FILE.LST
  13.  
  14. Here is an example HS-D.BAT file using BEW2LST:
  15.  
  16. HS-D.BAT
  17. --------
  18.  
  19. REM DOWNLOAD HS/LINK WITH QMODEM 4.5
  20. REM USE ALT-6 TO PREPARE UPLOAD LIST FOR BIDIRECTIONAL TRANSFERS
  21.  
  22. IF EXIST QMODEM.BEW GOTO USEBEW
  23. HSLINK -E%3 -P%2 -UC:\QMODEM\DOWNLOAD
  24. GOTO EXIT
  25.  
  26. :USEBEW
  27. BEW2LST <QMODEM.BEW >FILE.LST
  28. HSLINK -E%3 -P%2 -UC:\QMODEM\DOWNLOAD @FILE.LST
  29. IF ERRORLEVEL 1 GOTO EXIT
  30. DEL QMODEM.BEW
  31.  
  32. :EXIT
  33.  
  34. Once this batch is installed, you can use ALT-6 to enter the Batch Entry
  35. Window (BEW) where you specify files to be uploaded.  Then next time you
  36. do an hs/link download, the files listed in BEW will automatically be
  37. bidirectionally uploaded.
  38.  
  39.